home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
fortran
/
yaf77-1.1
/
yaf77-1
/
yaf77
/
F77ext
/
iand.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-01-15
|
100 b
|
10 lines
int iand_ (a,b)
int *a;
int *b;
{
static int res;
res = (*a & *b);
return (res);
}